From: vhanquez@gwig.uk.xensource.com Date: Thu, 3 Aug 2006 13:44:05 +0000 (+0000) Subject: remove '=' between command line name/argument. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15732^2~80 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=04f6e36b47f9b526942dba01c3c69ca9810313df;p=xen.git remove '=' between command line name/argument. ease parsing without getopt. Signed-off-by: Vincent Hanquez --- diff --git a/tools/misc/xend b/tools/misc/xend index e9bd8e18c7..82198fcea3 100644 --- a/tools/misc/xend +++ b/tools/misc/xend @@ -84,7 +84,7 @@ def check_user(): def start_xenstored(): XENSTORED_TRACE = os.getenv("XENSTORED_TRACE") - cmd = "xenstored --pid-file=/var/run/xenstore.pid" + cmd = "xenstored --pid-file /var/run/xenstore.pid" if XENSTORED_TRACE: cmd += " -T /var/log/xenstored-trace.log" s,o = commands.getstatusoutput(cmd)